home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / c01oop.zip / CPPWKBK / CPPV2-1B.MAK < prev    next >
Makefile  |  1992-08-25  |  325b  |  16 lines

  1. # Makefile for Demonstrating Problem 2.1
  2. # Part B: Create executable from CPPV2-13.CPP
  3.  
  4. all:
  5.     # Compile definition of function into object module
  6.     bcc -c cppv2-11.cpp
  7.  
  8.     # Compile declaration and use of function into object
  9.     bcc -c cppv2-13.cpp
  10.  
  11.     # Link
  12.     bcc cppv2-13.obj cppv2-11.obj
  13.  
  14.     # Run program
  15.     cppv2-13
  16.